import { FC, PropsWithChildren } from "react"; interface Props {} const About: FC<PropsWithChildren<Props>> = (props) => { return <div>hello About</div>; }; export default About;